.box {
  width: 75%; 
  height: auto; 
  background-color: #0b0b0b;
  box-shadow: 0 0 10px 5px rgb(57, 57, 57); 
  margin-left: 13%; 
  margin-right: 10%;
  margin-top: 150px;

}

@media (max-width: 768px) {
  .box {
    width: 91%; 
    margin-left: 5%; 
    margin-right: 6%;
    margin-top: 130px;
  }
}

.box h2 {
  font-size: 40px;
  font-family: 'Oswald';
  color: rgb(255, 166, 0);
  text-align: center;
  margin-bottom: 2%;
  margin-left: 5%;
  margin-right: 5%;
  text-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .box h2 {
    font-size: 25px; 
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  }
}


.box img{
  height: auto;
  width: 80%;
  margin-bottom: 3%;
  margin-left: 10%;
  margin-right: 10%;

}

@media (max-width: 768px) {
  .box img {
    height: auto;
    width: 91%; 
    margin-left: 5%; 
    margin-right: 6%;
    margin-top: 5%;
    margin-bottom: 4%;
  }

}

.box p{
  font-family: 'Georgia';
  color: rgb(255, 255, 255);
  margin-left: 5%;
  margin-right: 5%;
  text-shadow: 0 0 50px rgba(0, 0, 0, 0.8);

}

@media (max-width: 768px) {
  .box p {
    font-size: 13px; 
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  }
}

.box span{
  font-family: 'Teko';
  color: aquamarine;
  font-size: 35px;
  letter-spacing: 1px;
  text-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .box span {
    font-size: 25px; 
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  }

}
/*-------------------- LOADER --------------------*/


.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsl(0, 0%, 0%); /* Set the background color to black (dark mode) */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

* {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.pl {
  display: block;
  width: 6.25em;
  height: 6.25em;
}

.pl__ring,
.pl__ball {
  animation: ring 2s ease-out infinite;
}

.pl__ball {
  animation-name: ball;
}
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsl(0, 0%, 0%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Override system preference for dark mode */
@media (prefers-color-scheme: light) {
  .loading-screen {
    background: hsl(0, 0%, 0%); /* Set the background color for light mode */
  }
}


@keyframes ring {
  from {
    stroke-dasharray: 0 257 0 0 1 0 0 258;
  }
  25% {
    stroke-dasharray: 0 0 0 0 257 0 258 0;
  }
  50%,
  to {
    stroke-dasharray: 0 0 0 0 0 515 0 0;
  }
}

@keyframes ball {
  from,
  50% {
    animation-timing-function: ease-in;
    stroke-dashoffset: 1;
  }
  64% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -109;
  }
  78% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -145;
  }
  92% {
    animation-timing-function: ease-in;
    stroke-dashoffset: -157;
  }
  57%,
  71%,
  85%,
  99%,
  to {
    animation-timing-function: ease-out;
    stroke-dashoffset: -163;
  }
}
